Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identity context #2

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open

Identity context #2

wants to merge 7 commits into from

Conversation

eerenwong
Copy link
Collaborator

@eerenwong eerenwong commented Feb 24, 2020

ready to review and merge. Tested, no breaking changes.

Examples:

func AccessChecking(h resolvers.Handler) resolvers.Handler {
	m := func(in resolvers.Invocation) (interface{}, error) {
		out, err := h.Serve(in)
		if err != nil {
			return errortypes.Handler(err)
		}
		j, err := json.Marshal(&in.Context.Identity)
		if err != nil {
			panic(err)
		}
                // access can validate here
		fmt.Println(string(j))
		return out, err
	}
	return resolvers.HandlerFunc(m)
}

@eerenwong eerenwong requested a review from jonsaw February 24, 2020 06:21
@eerenwong eerenwong self-assigned this Feb 24, 2020
@eerenwong eerenwong marked this pull request as ready for review February 24, 2020 07:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant